home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / abstract.swf / scripts / DefineSprite_395 / frame_1 / DoAction.as
Text File  |  2013-04-24  |  603b  |  19 lines

  1. var h = 1;
  2. while(h < 21)
  3. {
  4.    this["d" + h].id = h;
  5.    this["d" + h].desc = _root.descs[h];
  6.    this["d" + h].filters = [new flash.filters.GlowFilter(11184895,1,3,3,3,3,false,false)];
  7.    this["d" + h].onRollOver = function()
  8.    {
  9.       _root.playSFX("menuRollOver");
  10.       this.filters = [new flash.filters.GlowFilter(16777215,1,6,6,3,3,false,false)];
  11.       this._parent.description.text = this.desc;
  12.    };
  13.    this["d" + h].onRollOut = this["d" + h].onReleaseOutside = function()
  14.    {
  15.       this.filters = [new flash.filters.GlowFilter(11184895,1,3,3,3,3,false,false)];
  16.    };
  17.    h++;
  18. }
  19.